diff options
| author | Fuwn <[email protected]> | 2024-02-07 23:57:13 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-07 23:57:13 -0800 |
| commit | a4fdd8c757c56af521257fcee3b991cd0b220dd2 (patch) | |
| tree | 7ce56f24b58b83a386ff6abb4d73b09c4f146d9b /src/routes/user/[user]/+page.svelte | |
| parent | fix(badges): categories when none exist (diff) | |
| download | due.moe-a4fdd8c757c56af521257fcee3b991cd0b220dd2.tar.xz due.moe-a4fdd8c757c56af521257fcee3b991cd0b220dd2.zip | |
refactor(data): move static data to module
Diffstat (limited to 'src/routes/user/[user]/+page.svelte')
| -rw-r--r-- | src/routes/user/[user]/+page.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/user/[user]/+page.svelte b/src/routes/user/[user]/+page.svelte index c743cf4b..cd2d367b 100644 --- a/src/routes/user/[user]/+page.svelte +++ b/src/routes/user/[user]/+page.svelte @@ -7,7 +7,7 @@ import root from '$lib/Utility/root.js'; import locale from '$stores/locale.js'; import { onMount } from 'svelte'; - import authorisedUsers from '$lib/Data/authorised.json'; + import authorisedUsers from '$lib/Data/Static/authorised.json'; import tooltip from '$lib/Tooltip/tooltip.js'; import AnimeRateLimited from '$lib/Error/AnimeRateLimited.svelte'; |